home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / wrnsr094 / header_f.frm < prev    next >
Text File  |  1995-05-08  |  3KB  |  100 lines

  1. VERSION 2.00
  2. Begin Form header_form 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "Edit Header"
  5.    ClientHeight    =   2220
  6.    ClientLeft      =   1095
  7.    ClientTop       =   1485
  8.    ClientWidth     =   8055
  9.    Enabled         =   0   'False
  10.    Height          =   2625
  11.    Left            =   1035
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   2220
  17.    ScaleWidth      =   8055
  18.    Top             =   1140
  19.    Visible         =   0   'False
  20.    Width           =   8175
  21.    Begin TextBox Text3 
  22.       BorderStyle     =   0  'None
  23.       Height          =   255
  24.       Left            =   120
  25.       TabIndex        =   6
  26.       Text            =   "Signature:"
  27.       Top             =   1560
  28.       Width           =   975
  29.    End
  30.    Begin CheckBox sig_check 
  31.       Height          =   495
  32.       Left            =   1320
  33.       TabIndex        =   7
  34.       Top             =   1440
  35.       Value           =   1  'Checked
  36.       Width           =   375
  37.    End
  38.    Begin CommandButton Cancel_button 
  39.       Caption         =   "Cancel"
  40.       Height          =   495
  41.       Left            =   7080
  42.       TabIndex        =   5
  43.       Top             =   960
  44.       Width           =   855
  45.    End
  46.    Begin TextBox dest 
  47.       Height          =   375
  48.       Left            =   1320
  49.       TabIndex        =   3
  50.       Top             =   960
  51.       Width           =   5175
  52.    End
  53.    Begin TextBox dest_caption 
  54.       BorderStyle     =   0  'None
  55.       Enabled         =   0   'False
  56.       Height          =   255
  57.       Left            =   120
  58.       TabIndex        =   2
  59.       Text            =   "To:"
  60.       Top             =   960
  61.       Width           =   975
  62.    End
  63.    Begin CommandButton OK_button 
  64.       Caption         =   "OK"
  65.       Height          =   495
  66.       Left            =   7320
  67.       TabIndex        =   4
  68.       Top             =   360
  69.       Width           =   615
  70.    End
  71.    Begin TextBox subject 
  72.       Height          =   375
  73.       Left            =   1320
  74.       TabIndex        =   0
  75.       Top             =   360
  76.       Width           =   5175
  77.    End
  78.    Begin TextBox Text2 
  79.       BorderStyle     =   0  'None
  80.       Enabled         =   0   'False
  81.       Height          =   255
  82.       Left            =   120
  83.       TabIndex        =   1
  84.       Text            =   "Subject:"
  85.       Top             =   360
  86.       Width           =   855
  87.    End
  88. End
  89. Sub Cancel_button_Click ()
  90.    header_form.enabled = False
  91.    header_form.visible = False
  92.    dest.text = ""
  93. End Sub
  94.  
  95. Sub OK_button_Click ()
  96.    header_form.enabled = False
  97.    header_form.visible = False
  98. End Sub
  99.  
  100.